home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Complete Linux
/
Complete Linux.iso
/
docs
/
apps
/
circuits
/
spice2g6.z
/
spice2g6
/
spice
/
Fortran
/
undefi.f
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-02-03
|
344 b
|
15 lines
subroutine undefi(array,length)
implicit double precision (a-h,o-z)
c
dimension array(1)
c this routine undefines the memory locations indicated by array(1)
c through array(length).
c
data aundef /2h.u/
if (length.eq.0) return
do 10 i=1,length
array(i)=aundef
10 continue
return
end